home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 June / CHIP Haziran 2001.iso / prog / haziran / 19 / setup.exe / data.z / pci_dma.bpr < prev    next >
Text File  |  2001-04-11  |  4KB  |  163 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = pci_dma.exe
  17. OBJFILES = pci_dma.obj\
  18.  pci_dma.obj
  19. RESFILES =
  20. RESDEPEN = $(RESFILES)
  21. LIBFILES = 
  22. LIBRARIES = 
  23. SPARELIBS = 
  24. PACKAGES =
  25. DEFFILE =
  26. # ---------------------------------------------------------------------------
  27. PATHCPP = 
  28. PATHASM = .;
  29. PATHPAS = .;
  30. PATHRC = .;
  31. DEBUGLIBPATH = $(BCB)\lib\debug
  32. RELEASELIBPATH = $(BCB)\lib\release
  33. # ---------------------------------------------------------------------------
  34. CFLAG1 =  -Od -w -r- -k -y -v -vi- -c -tWC
  35. CFLAG2 = -D_NO_VCL -I$(BCB)\include
  36. CFLAG3 = -Tkh30000
  37. PFLAGS = -D_NO_VCL -$Y -$W -$O- -v -JPHN -M \
  38.  -U$(BCB)\lib;$(DEBUGLIBPATH)\
  39.  -I$(BCB)\include
  40. RFLAGS = -D_NO_VCL -i$(BCB)\include
  41. AFLAGS = /i$(BCB)\include /d_NO_VCL /mx /w2 /zd
  42. LFLAGS = -ap -Tpe -x -Gn -v \
  43.  -L$(BCB)\lib;$(DEBUGLIBPATH)
  44. IFLAGS =
  45. # ---------------------------------------------------------------------------
  46. ALLOBJ = c0x32.obj $(OBJFILES)
  47. ALLRES = $(RESFILES)
  48. ALLLIB = $(LIBFILES)  import32.lib cw32mt.lib
  49. # ---------------------------------------------------------------------------
  50. !ifdef IDEOPTIONS
  51.  
  52. [Version Info]
  53. IncludeVerInfo=0
  54. AutoIncBuild=0
  55. MajorVer=1
  56. MinorVer=0
  57. Release=0
  58. Build=0
  59. Debug=0
  60. PreRelease=0
  61. Special=0
  62. Private=0
  63. DLL=0
  64. Locale=1033
  65. CodePage=1252
  66.  
  67. [Version Info Keys]
  68. CompanyName=
  69. FileDescription=Executable (Console)
  70. FileVersion=1.0.0.0
  71. InternalName=
  72. LegalCopyright=
  73. LegalTrademarks=
  74. OriginalFilename=
  75. ProductName=
  76. ProductVersion=1.0.0.0
  77. Comments=
  78.  
  79. [Debugging]
  80. DebugSourceDirs=
  81.  
  82. [Parameters]
  83. RunParams=
  84. HostApplication=
  85.  
  86. !endif
  87.  
  88. # ---------------------------------------------------------------------------
  89. # MAKE SECTION
  90. # ---------------------------------------------------------------------------
  91. # This section of the project file is not used by the BCB IDE.  It is for
  92. # the benefit of building from the command-line using the MAKE utility.
  93. # ---------------------------------------------------------------------------
  94.  
  95. .autodepend
  96. # ---------------------------------------------------------------------------
  97. !if !$d(BCC32)
  98. BCC32 = bcc32
  99. !endif
  100.  
  101. !if !$d(DCC32)
  102. DCC32 = dcc32
  103. !endif
  104.  
  105. !if !$d(TASM32)
  106. TASM32 = tasm32
  107. !endif
  108.  
  109. !if !$d(LINKER)
  110. LINKER = ilink32
  111. !endif
  112.  
  113. !if !$d(BRCC32)
  114. BRCC32 = brcc32
  115. !endif
  116. # ---------------------------------------------------------------------------
  117. !if $d(PATHCPP)
  118. .PATH.CPP = $(PATHCPP)
  119. .PATH.C   = $(PATHCPP)
  120. !endif
  121.  
  122. !if $d(PATHPAS)
  123. .PATH.PAS = $(PATHPAS)
  124. !endif
  125.  
  126. !if $d(PATHASM)
  127. .PATH.ASM = $(PATHASM)
  128. !endif
  129.  
  130. !if $d(PATHRC)
  131. .PATH.RC  = $(PATHRC)
  132. !endif
  133. # ---------------------------------------------------------------------------
  134. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  135.     $(BCB)\BIN\$(LINKER) @&&!
  136.     $(LFLAGS) +
  137.     $(ALLOBJ), +
  138.     $(PROJECT),, +
  139.     $(ALLLIB), +
  140.     $(DEFFILE), +
  141.     $(ALLRES)
  142. !
  143. # ---------------------------------------------------------------------------
  144. .pas.hpp:
  145.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  146.  
  147. .pas.obj:
  148.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  149.  
  150. .cpp.obj:
  151.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  152.  
  153. .c.obj:
  154.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  155.  
  156. .asm.obj:
  157.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  158.  
  159. .rc.res:
  160.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  161. # ---------------------------------------------------------------------------
  162.  
  163.